Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632705 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll

font/ cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/assets/
    8 Items
  • 4.png
  • 1.png
  • 3.png
  • 6.png
  • dice-roll.gif
  • 2.png
  • dice.png
  • 5.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/style.css
    97 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;

    font-family: "sans";
    user-select: none;
    }

    index.html cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/index.html
    294 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="assets/dice.png" type="image/x-icon">
    <link rel="stylesheet" href="style.css">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/09 - Dice Roll/script.js
    107 Views
    0 Comments
    function shuffle(){
    const img = document.getElementById("img");
    let random = Math.floor(Math.random() * 6) + 1;
    img.setAttribute("src", `assets/${random}.png`);
    }

    function anim(){
    setTimeout(shuffle, 500);